home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1993…ch: Other People's Memory / ADC Developer CD (1993-03) (''Other People's Memory'')_iso / Dev.CD Mar 93.iso / Technical Documentation / Sample Code / DTS.Lib & Samples / DTS.Lib / =DTS.utils.fns < prev    next >
Encoding:
Text File  |  1992-10-22  |  2.7 KB  |  72 lines  |  [TEXT/MPS ]

  1. /************** AppleTalk.c **************/
  2.  
  3. OSErr            ATInit(void);
  4. /* Currently does nothing.  Calling it allows the AppleTalk.c.o file to be needed
  5. ** by the link. */
  6.  
  7. OSErr            DoBuildZoneList(ListHandle listHndl);
  8. /* Given a list record, this function places all of the zone names in
  9. ** the list.  Prior to calling this function, you need to create a
  10. ** list record that has zero rows and one column.  The zones are added
  11. ** to the list in the column in alphabetical order.  The function
  12. ** IUMagString is used to determine order. */
  13.  
  14. OSErr            HiliteUserZone(ListHandle listHndl);
  15. /* Given a list of zones (probably generated by DoBuildZoneList), this
  16. ** function selects the zone the user is currently in.  The current zone
  17. ** is selected and scrolled into view. */
  18.  
  19. OSErr            AddPPCNBPAlias(NamesTableEntry *theNTE, Str32 newNBPType, EntityName *newEntity);
  20. /* This function registers an alias for the application.  This allows PPCBrowser
  21. ** to be used to display only machines registered with that alias, instead of
  22. ** all machines that are PPCToolbox capable.  This function is called by 
  23. ** the application at startup time, as the alias only needs to be registered once.
  24. ** If there is more than one version of the application running on a single
  25. ** machine, AddPPCNBPAlias will append a number to the application name.
  26. ** This allows each copy of the application to be displayed by PPCBrowser. */
  27.  
  28. OSErr            RemoveNBPAlias(EntityPtr theEntity);
  29. /* This function removes the designated alias.  This is executed by the application
  30. ** at application quit time. */
  31.  
  32.  
  33. /************** GWLayers.c **************/
  34. /* There is plenty of information elsewhere.  See the files:
  35. **   =Using GWLayers.c
  36. **   GWLayers.c (has a header of comments describing usage)
  37. **   GWLayers.h (prototype + description of each function)
  38.  
  39.  
  40.  
  41. /************** ListControl.c **************/
  42. /* There is plenty of information elsewhere.  See the files:
  43. **   =Using ListControl.c
  44. **   ListControl.c (has a header of comments describing usage) */
  45.  
  46.  
  47.  
  48. /************** PPC.c **************/
  49.  
  50. OSErr    DoIPCListPorts(short *sindx, short *reqCount, short *actCount,
  51.                        LocationNamePtr  loc,
  52.                        PortInfoArrayPtr retInfo,
  53.                        PPCFilterProcPtr filter)
  54. /* Used to generate a list of IPC ports, given a target.  For an exmaple usage,
  55. ** see the file AEChess.c in the sample application Kibitz. */
  56.  
  57.  
  58.  
  59. /************** TextEditControl.c **************/
  60. /* There is plenty of information elsewhere.  See the files:
  61. **   =Using TextEditControl.c
  62. **   TextEditControl.c (has a header of comments describing usage) */
  63.  
  64.  
  65.  
  66. /************** Utilities.c **************/
  67. /* You can find information on the Utilities.c functions in the file Utilities.h
  68. ** Utilities.h has prototypes and descriptions of all of the functions. */
  69.  
  70.  
  71.  
  72.